home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
language
/
gemfsc18.lzh
/
AESSRC18.LZH
/
AESFUNCS
/
FRMERROR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-24
|
544b
|
25 lines
/**************************************************************************
* FRMERROR.C - The frm_error() and frm_qerror() routines.
*************************************************************************/
#include <stdarg.h>
#include "gemfast.h"
#include "exterror.h"
int frm_error(err, buttons, fmt)
int err;
char *buttons;
char *fmt;
{
int rv;
va_list args;
va_start(args, fmt);
rv = frm_verror(err, buttons, fmt, args);
va_end(args);
return rv;
}